.residential-hero {
    padding: clamp(60px, 8vw, 120px) 0;
    background: #f8f8fb;
    overflow: hidden;
}

.residential-container {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(30px, 5vw, 80px);

    align-items: center;
}

.residential-content {
    width: 100%;
}

.residential-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e61d2b;
    margin-bottom: 20px;
}

.residential-heading {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 24px;
}

.gold-text {
    color: #d6a814;
}

.red-text {
    color: #e61d2b;
}

.blue-text {
    color: #2c2ca7;
}

.residential-text {
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    line-height: 1.8;
    color: #444;
    max-width: 650px;
    margin-bottom: 18px;
}

.residential-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 56px;
    padding: 14px 30px;

    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: all .3s ease;
}

.btn-primary {
    background: #e61d2b;
    color: #fff;
}

.btn-secondary {
    background: #2c2ca7;
    color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.residential-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.feature-item {
    font-size: 15px;
    font-weight: 600;
    color: #2c2ca7;
}

.residential-image {
    width: 100%;
}

.residential-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

@media (max-width: 1024px) {

    .residential-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .residential-content {
        order: 2;
    }

    .residential-image {
        order: 1;
        max-width: 700px;
        margin: 0 auto;
    }

    .residential-text {
        max-width: 100%;
    }

    .residential-buttons,
    .residential-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .residential-container {
        width: min(100%, calc(100% - 30px));
    }

    .residential-heading {
        font-size: clamp(2.3rem, 8vw, 3.5rem);
    }

    .residential-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .residential-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .residential-features {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .residential-hero {
        padding: 50px 0;
    }

    .residential-container {
        width: calc(100% - 24px);
    }

    .residential-heading {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .residential-text {
        font-size: 15px;
    }

    .feature-item {
        width: 100%;
        text-align: center;
    }

    .residential-image img {
        border-radius: 12px;
    }
}